home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / distutils / sysconfig.py < prev    next >
Text File  |  2008-10-05  |  20KB  |  542 lines

  1. """Provide access to Python's configuration information.  The specific
  2. configuration variables available depend heavily on the platform and
  3. configuration.  The values may be retrieved using
  4. get_config_var(name), and the list of variables is available via
  5. get_config_vars().keys().  Additional convenience functions are also
  6. available.
  7.  
  8. Written by:   Fred L. Drake, Jr.
  9. Email:        <fdrake@acm.org>
  10. """
  11.  
  12. __revision__ = "$Id: sysconfig.py 52234 2006-10-08 17:50:26Z ronald.oussoren $"
  13.  
  14. import os
  15. import re
  16. import string
  17. import sys
  18.  
  19. from distutils.errors import DistutilsPlatformError
  20.  
  21. # These are needed in a couple of spots, so just compute them once.
  22. PREFIX = os.path.normpath(sys.prefix)
  23. EXEC_PREFIX = os.path.normpath(sys.exec_prefix)
  24.  
  25. # python_build: (Boolean) if true, we're either building Python or
  26. # building an extension with an un-installed Python, so we use
  27. # different (hard-wired) directories.
  28.  
  29. argv0_path = os.path.dirname(os.path.abspath(sys.executable))
  30. landmark = os.path.join(argv0_path, "Modules", "Setup")
  31.  
  32. python_build = os.path.isfile(landmark)
  33.  
  34. del landmark
  35.  
  36.  
  37. def get_python_version():
  38.     """Return a string containing the major and minor Python version,
  39.     leaving off the patchlevel.  Sample return values could be '1.5'
  40.     or '2.2'.
  41.     """
  42.     return sys.version[:3]
  43.  
  44.  
  45. def get_python_inc(plat_specific=0, prefix=None):
  46.     """Return the directory containing installed Python header files.
  47.  
  48.     If 'plat_specific' is false (the default), this is the path to the
  49.     non-platform-specific header files, i.e. Python.h and so on;
  50.     otherwise, this is the path to platform-specific header files
  51.     (namely pyconfig.h).
  52.  
  53.     If 'prefix' is supplied, use it instead of sys.prefix or
  54.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  55.     """
  56.     if prefix is None:
  57.         prefix = plat_specific and EXEC_PREFIX or PREFIX
  58.     if os.name == "posix":
  59.         if python_build:
  60.             base = os.path.dirname(os.path.abspath(sys.executable))
  61.             if plat_specific:
  62.                 inc_dir = base
  63.             else:
  64.                 inc_dir = os.path.join(base, "Include")
  65.                 if not os.path.exists(inc_dir):
  66.                     inc_dir = os.path.join(os.path.dirname(base), "Include")
  67.             return inc_dir
  68.         return os.path.join(prefix, "include",
  69.                             "python" + get_python_version() + (sys.pydebug and '_d' or ''))
  70.     elif os.name == "nt":
  71.         return os.path.join(prefix, "include")
  72.     elif os.name == "mac":
  73.         if plat_specific:
  74.             return os.path.join(prefix, "Mac", "Include")
  75.         else:
  76.             return os.path.join(prefix, "Include")
  77.     elif os.name == "os2":
  78.         return os.path.join(prefix, "Include")
  79.     else:
  80.         raise DistutilsPlatformError(
  81.             "I don't know where Python installs its C header files "
  82.             "on platform '%s'" % os.name)
  83.  
  84.  
  85. def get_python_lib(plat_specific=0, standard_lib=0, prefix=None):
  86.     """Return the directory containing the Python library (standard or
  87.     site additions).
  88.  
  89.     If 'plat_specific' is true, return the directory containing
  90.     platform-specific modules, i.e. any module from a non-pure-Python
  91.     module distribution; otherwise, return the platform-shared library
  92.     directory.  If 'standard_lib' is true, return the directory
  93.     containing standard Python library modules; otherwise, return the
  94.     directory for site-specific modules.
  95.  
  96.     If 'prefix' is supplied, use it instead of sys.prefix or
  97.     sys.exec_prefix -- i.e., ignore 'plat_specific'.
  98.     """
  99.     if prefix is None:
  100.         prefix = plat_specific and EXEC_PREFIX or PREFIX
  101.  
  102.     if os.name == "posix":
  103.         libpython = os.path.join(prefix,
  104.                                  "lib", "python" + get_python_version())
  105.         if standard_lib:
  106.             return libpython
  107.         else:
  108.             return os.path.join(libpython, "site-packages")
  109.  
  110.     elif os.name == "nt":
  111.         if standard_lib:
  112.             return os.path.join(prefix, "Lib")
  113.         else:
  114.             if get_python_version() < "2.2":
  115.                 return prefix
  116.             else:
  117.                 return os.path.join(PREFIX, "Lib", "site-packages")
  118.  
  119.     elif os.name == "mac":
  120.         if plat_specific:
  121.             if standard_lib:
  122.                 return os.path.join(prefix, "Lib", "lib-dynload")
  123.             else:
  124.                 return os.path.join(prefix, "Lib", "site-packages")
  125.         else:
  126.             if standard_lib:
  127.                 return os.path.join(prefix, "Lib")
  128.             else:
  129.                 return os.path.join(prefix, "Lib", "site-packages")
  130.  
  131.     elif os.name == "os2":
  132.         if standard_lib:
  133.             return os.path.join(PREFIX, "Lib")
  134.         else:
  135.             return os.path.join(PREFIX, "Lib", "site-packages")
  136.  
  137.     else:
  138.         raise DistutilsPlatformError(
  139.             "I don't know where Python installs its library "
  140.             "on platform '%s'" % os.name)
  141.  
  142.  
  143. def customize_compiler(compiler):
  144.     """Do any platform-specific customization of a CCompiler instance.
  145.  
  146.     Mainly needed on Unix, so we can plug in the information that
  147.     varies across Unices and is stored in Python's Makefile.
  148.     """
  149.     if compiler.compiler_type == "unix":
  150.         (cc, cxx, opt, extra_cflags, basecflags, cflags, ccshared, ldshared, so_ext) = \
  151.             get_config_vars('CC', 'CXX', 'OPT', 'EXTRA_CFLAGS', 'BASECFLAGS', 'CFLAGS',
  152.                             'CCSHARED', 'LDSHARED', 'SO')
  153.  
  154.         if os.environ.has_key('CC'):
  155.             cc = os.environ['CC']
  156.         if os.environ.has_key('CXX'):
  157.             cxx = os.environ['CXX']
  158.         if os.environ.has_key('LDSHARED'):
  159.             ldshared = os.environ['LDSHARED']
  160.         if os.environ.has_key('CPP'):
  161.             cpp = os.environ['CPP']
  162.         else:
  163.             cpp = cc + " -E"           # not always
  164.         if os.environ.has_key('LDFLAGS'):
  165.             ldshared = ldshared + ' ' + os.environ['LDFLAGS']
  166.         if os.environ.has_key('BASECFLAGS'):
  167.             basecflags = os.environ['BASECFLAGS']
  168.         if os.environ.has_key('OPT'):
  169.             opt = os.environ['OPT']
  170.         cflags = ' '.join(str(x) for x in (basecflags, opt, extra_cflags) if x)
  171.         if os.environ.has_key('CFLAGS'):
  172.             cflags = ' '.join(str(x) for x in (basecflags, opt, os.environ['CFLAGS'], extra_cflags) if x)
  173.             ldshared = ldshared + ' ' + os.environ['CFLAGS']
  174.         if os.environ.has_key('CPPFLAGS'):
  175.             cpp = cpp + ' ' + os.environ['CPPFLAGS']
  176.             cflags = cflags + ' ' + os.environ['CPPFLAGS']
  177.             ldshared = ldshared + ' ' + os.environ['CPPFLAGS']
  178.  
  179.         cc_cmd = cc + ' ' + cflags
  180.         compiler.set_executables(
  181.             preprocessor=cpp,
  182.             compiler=cc_cmd,
  183.             compiler_so=cc_cmd + ' ' + ccshared,
  184.             compiler_cxx=cxx,
  185.             linker_so=ldshared,
  186.             linker_exe=cc)
  187.  
  188.         compiler.shared_lib_extension = so_ext
  189.  
  190.  
  191. def get_config_h_filename():
  192.     """Return full pathname of installed pyconfig.h file."""
  193.     if python_build:
  194.         inc_dir = argv0_path
  195.     else:
  196.         inc_dir = get_python_inc(plat_specific=1)
  197.     if get_python_version() < '2.2':
  198.         config_h = 'config.h'
  199.     else:
  200.         # The name of the config.h file changed in 2.2
  201.         config_h = 'pyconfig.h'
  202.     return os.path.join(inc_dir, config_h)
  203.  
  204.  
  205. def get_makefile_filename():
  206.     """Return full pathname of installed Makefile from the Python build."""
  207.     if python_build:
  208.         return os.path.join(os.path.dirname(sys.executable), "Makefile")
  209.     lib_dir = get_python_lib(plat_specific=1, standard_lib=1)
  210.     return os.path.join(lib_dir, "config" + (sys.pydebug and "_d" or ""), "Makefile")
  211.  
  212.  
  213. def parse_config_h(fp, g=None):
  214.     """Parse a config.h-style file.
  215.  
  216.     A dictionary containing name/value pairs is returned.  If an
  217.     optional dictionary is passed in as the second argument, it is
  218.     used instead of a new dictionary.
  219.     """
  220.     if g is None:
  221.         g = {}
  222.     define_rx = re.compile("#define ([A-Z][A-Za-z0-9_]+) (.*)\n")
  223.     undef_rx = re.compile("/[*] #undef ([A-Z][A-Za-z0-9_]+) [*]/\n")
  224.     #
  225.     while 1:
  226.         line = fp.readline()
  227.         if not line:
  228.             break
  229.         m = define_rx.match(line)
  230.         if m:
  231.             n, v = m.group(1, 2)
  232.             try: v = int(v)
  233.             except ValueError: pass
  234.             g[n] = v
  235.         else:
  236.             m = undef_rx.match(line)
  237.             if m:
  238.                 g[m.group(1)] = 0
  239.     return g
  240.  
  241.  
  242. # Regexes needed for parsing Makefile (and similar syntaxes,
  243. # like old-style Setup files).
  244. _variable_rx = re.compile("([a-zA-Z][a-zA-Z0-9_]+)\s*=\s*(.*)")
  245. _findvar1_rx = re.compile(r"\$\(([A-Za-z][A-Za-z0-9_]*)\)")
  246. _findvar2_rx = re.compile(r"\${([A-Za-z][A-Za-z0-9_]*)}")
  247.  
  248. def parse_makefile(fn, g=None):
  249.     """Parse a Makefile-style file.
  250.  
  251.     A dictionary containing name/value pairs is returned.  If an
  252.     optional dictionary is passed in as the second argument, it is
  253.     used instead of a new dictionary.
  254.     """
  255.     from distutils.text_file import TextFile
  256.     fp = TextFile(fn, strip_comments=1, skip_blanks=1, join_lines=1)
  257.  
  258.     if g is None:
  259.         g = {}
  260.     done = {}
  261.     notdone = {}
  262.  
  263.     while 1:
  264.         line = fp.readline()
  265.         if line is None:                # eof
  266.             break
  267.         m = _variable_rx.match(line)
  268.         if m:
  269.             n, v = m.group(1, 2)
  270.             v = string.strip(v)
  271.             if "$" in v:
  272.                 notdone[n] = v
  273.             else:
  274.                 try: v = int(v)
  275.                 except ValueError: pass
  276.                 done[n] = v
  277.  
  278.     # do variable interpolation here
  279.     while notdone:
  280.         for name in notdone.keys():
  281.             value = notdone[name]
  282.             m = _findvar1_rx.search(value) or _findvar2_rx.search(value)
  283.             if m:
  284.                 n = m.group(1)
  285.                 found = True
  286.                 if done.has_key(n):
  287.                     item = str(done[n])
  288.                 elif notdone.has_key(n):
  289.                     # get it on a subsequent round
  290.                     found = False
  291.                 elif os.environ.has_key(n):
  292.                     # do it like make: fall back to environment
  293.                     item = os.environ[n]
  294.                 else:
  295.                     done[n] = item = ""
  296.                 if found:
  297.                     after = value[m.end():]
  298.                     value = value[:m.start()] + item + after
  299.                     if "$" in after:
  300.                         notdone[name] = value
  301.                     else:
  302.                         try: value = int(value)
  303.                         except ValueError:
  304.                             done[name] = string.strip(value)
  305.                         else:
  306.                             done[name] = value
  307.                         del notdone[name]
  308.             else:
  309.                 # bogus variable reference; just drop it since we can't deal
  310.                 del notdone[name]
  311.  
  312.     fp.close()
  313.  
  314.     # save the results in the global dictionary
  315.     g.update(done)
  316.     return g
  317.  
  318.  
  319. def expand_makefile_vars(s, vars):
  320.     """Expand Makefile-style variables -- "${foo}" or "$(foo)" -- in
  321.     'string' according to 'vars' (a dictionary mapping variable names to
  322.     values).  Variables not present in 'vars' are silently expanded to the
  323.     empty string.  The variable values in 'vars' should not contain further
  324.     variable expansions; if 'vars' is the output of 'parse_makefile()',
  325.     you're fine.  Returns a variable-expanded version of 's'.
  326.     """
  327.  
  328.     # This algorithm does multiple expansion, so if vars['foo'] contains
  329.     # "${bar}", it will expand ${foo} to ${bar}, and then expand
  330.     # ${bar}... and so forth.  This is fine as long as 'vars' comes from
  331.     # 'parse_makefile()', which takes care of such expansions eagerly,
  332.     # according to make's variable expansion semantics.
  333.  
  334.     while 1:
  335.         m = _findvar1_rx.search(s) or _findvar2_rx.search(s)
  336.         if m:
  337.             (beg, end) = m.span()
  338.             s = s[0:beg] + vars.get(m.group(1)) + s[end:]
  339.         else:
  340.             break
  341.     return s
  342.  
  343.  
  344. _config_vars = None
  345.  
  346. def _init_posix():
  347.     """Initialize the module as appropriate for POSIX systems."""
  348.     g = {}
  349.     # load the installed Makefile:
  350.     try:
  351.         filename = get_makefile_filename()
  352.         parse_makefile(filename, g)
  353.     except IOError, msg:
  354.         my_msg = "invalid Python installation: unable to open %s" % filename
  355.         if hasattr(msg, "strerror"):
  356.             my_msg = my_msg + " (%s)" % msg.strerror
  357.  
  358.         raise DistutilsPlatformError(my_msg)
  359.  
  360.     # load the installed pyconfig.h:
  361.     try:
  362.         filename = get_config_h_filename()
  363.         parse_config_h(file(filename), g)
  364.     except IOError, msg:
  365.         my_msg = "invalid Python installation: unable to open %s" % filename
  366.         if hasattr(msg, "strerror"):
  367.             my_msg = my_msg + " (%s)" % msg.strerror
  368.  
  369.         raise DistutilsPlatformError(my_msg)
  370.  
  371.     # On MacOSX we need to check the setting of the environment variable
  372.     # MACOSX_DEPLOYMENT_TARGET: configure bases some choices on it so
  373.     # it needs to be compatible.
  374.     # If it isn't set we set it to the configure-time value
  375.     if sys.platform == 'darwin' and g.has_key('MACOSX_DEPLOYMENT_TARGET'):
  376.         cfg_target = g['MACOSX_DEPLOYMENT_TARGET']
  377.         cur_target = os.getenv('MACOSX_DEPLOYMENT_TARGET', '')
  378.         if cur_target == '':
  379.             cur_target = cfg_target
  380.             os.putenv('MACOSX_DEPLOYMENT_TARGET', cfg_target)
  381.         elif map(int, cfg_target.split('.')) > map(int, cur_target.split('.')):
  382.             my_msg = ('$MACOSX_DEPLOYMENT_TARGET mismatch: now "%s" but "%s" during configure'
  383.                 % (cur_target, cfg_target))
  384.             raise DistutilsPlatformError(my_msg)
  385.  
  386.     # On AIX, there are wrong paths to the linker scripts in the Makefile
  387.     # -- these paths are relative to the Python source, but when installed
  388.     # the scripts are in another directory.
  389.     if python_build:
  390.         g['LDSHARED'] = g['BLDSHARED']
  391.  
  392.     elif get_python_version() < '2.1':
  393.         # The following two branches are for 1.5.2 compatibility.
  394.         if sys.platform == 'aix4':          # what about AIX 3.x ?
  395.             # Linker script is in the config directory, not in Modules as the
  396.             # Makefile says.
  397.             python_lib = get_python_lib(standard_lib=1)
  398.             ld_so_aix = os.path.join(python_lib, 'config', 'ld_so_aix')
  399.             python_exp = os.path.join(python_lib, 'config', 'python.exp')
  400.  
  401.             g['LDSHARED'] = "%s %s -bI:%s" % (ld_so_aix, g['CC'], python_exp)
  402.  
  403.         elif sys.platform == 'beos':
  404.             # Linker script is in the config directory.  In the Makefile it is
  405.             # relative to the srcdir, which after installation no longer makes
  406.             # sense.
  407.             python_lib = get_python_lib(standard_lib=1)
  408.             linkerscript_path = string.split(g['LDSHARED'])[0]
  409.             linkerscript_name = os.path.basename(linkerscript_path)
  410.             linkerscript = os.path.join(python_lib, 'config',
  411.                                         linkerscript_name)
  412.  
  413.             # XXX this isn't the right place to do this: adding the Python
  414.             # library to the link, if needed, should be in the "build_ext"
  415.             # command.  (It's also needed for non-MS compilers on Windows, and
  416.             # it's taken care of for them by the 'build_ext.get_libraries()'
  417.             # method.)
  418.             g['LDSHARED'] = ("%s -L%s/lib -lpython%s" %
  419.                              (linkerscript, PREFIX, get_python_version()))
  420.  
  421.     global _config_vars
  422.     _config_vars = g
  423.  
  424.  
  425. def _init_nt():
  426.     """Initialize the module as appropriate for NT"""
  427.     g = {}
  428.     # set basic install directories
  429.     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
  430.     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
  431.  
  432.     # XXX hmmm.. a normal install puts include files here
  433.     g['INCLUDEPY'] = get_python_inc(plat_specific=0)
  434.  
  435.     g['SO'] = '.pyd'
  436.     g['EXE'] = ".exe"
  437.  
  438.     global _config_vars
  439.     _config_vars = g
  440.  
  441.  
  442. def _init_mac():
  443.     """Initialize the module as appropriate for Macintosh systems"""
  444.     g = {}
  445.     # set basic install directories
  446.     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
  447.     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
  448.  
  449.     # XXX hmmm.. a normal install puts include files here
  450.     g['INCLUDEPY'] = get_python_inc(plat_specific=0)
  451.  
  452.     import MacOS
  453.     if not hasattr(MacOS, 'runtimemodel'):
  454.         g['SO'] = '.ppc.slb'
  455.     else:
  456.         g['SO'] = '.%s.slb' % MacOS.runtimemodel
  457.  
  458.     # XXX are these used anywhere?
  459.     g['install_lib'] = os.path.join(EXEC_PREFIX, "Lib")
  460.     g['install_platlib'] = os.path.join(EXEC_PREFIX, "Mac", "Lib")
  461.  
  462.     # These are used by the extension module build
  463.     g['srcdir'] = ':'
  464.     global _config_vars
  465.     _config_vars = g
  466.  
  467.  
  468. def _init_os2():
  469.     """Initialize the module as appropriate for OS/2"""
  470.     g = {}
  471.     # set basic install directories
  472.     g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
  473.     g['BINLIBDEST'] = get_python_lib(plat_specific=1, standard_lib=1)
  474.  
  475.     # XXX hmmm.. a normal install puts include files here
  476.     g['INCLUDEPY'] = get_python_inc(plat_specific=0)
  477.  
  478.     g['SO'] = '.pyd'
  479.     g['EXE'] = ".exe"
  480.  
  481.     global _config_vars
  482.     _config_vars = g
  483.  
  484.  
  485. def get_config_vars(*args):
  486.     """With no arguments, return a dictionary of all configuration
  487.     variables relevant for the current platform.  Generally this includes
  488.     everything needed to build extensions and install both pure modules and
  489.     extensions.  On Unix, this means every variable defined in Python's
  490.     installed Makefile; on Windows and Mac OS it's a much smaller set.
  491.  
  492.     With arguments, return a list of values that result from looking up
  493.     each argument in the configuration variable dictionary.
  494.     """
  495.     global _config_vars
  496.     if _config_vars is None:
  497.         func = globals().get("_init_" + os.name)
  498.         if func:
  499.             func()
  500.         else:
  501.             _config_vars = {}
  502.  
  503.         # Normalized versions of prefix and exec_prefix are handy to have;
  504.         # in fact, these are the standard versions used most places in the
  505.         # Distutils.
  506.         _config_vars['prefix'] = PREFIX
  507.         _config_vars['exec_prefix'] = EXEC_PREFIX
  508.  
  509.         if sys.platform == 'darwin':
  510.             kernel_version = os.uname()[2] # Kernel version (8.4.3)
  511.             major_version = int(kernel_version.split('.')[0])
  512.  
  513.             if major_version < 8:
  514.                 # On Mac OS X before 10.4, check if -arch and -isysroot
  515.                 # are in CFLAGS or LDFLAGS and remove them if they are.
  516.                 # This is needed when building extensions on a 10.3 system
  517.                 # using a universal build of python.
  518.                 for key in ('LDFLAGS', 'BASECFLAGS',
  519.                         # a number of derived variables. These need to be
  520.                         # patched up as well.
  521.                         'CFLAGS', 'PY_CFLAGS', 'BLDSHARED'):
  522.  
  523.                     flags = _config_vars[key]
  524.                     flags = re.sub('-arch\s+\w+\s', ' ', flags)
  525.                     flags = re.sub('-isysroot [^ \t]*', ' ', flags)
  526.                     _config_vars[key] = flags
  527.  
  528.     if args:
  529.         vals = []
  530.         for name in args:
  531.             vals.append(_config_vars.get(name))
  532.         return vals
  533.     else:
  534.         return _config_vars
  535.  
  536. def get_config_var(name):
  537.     """Return the value of a single variable using the dictionary
  538.     returned by 'get_config_vars()'.  Equivalent to
  539.     get_config_vars().get(name)
  540.     """
  541.     return get_config_vars().get(name)
  542.